Linux webm002.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
adminimize
/
inc-setup
/
/home/ariannadhf/www/wp-content/plugins/adminimize/inc-setup/meta-boxes.php
<?php /** * @package Adminimize * @subpackage Meta Boxes Setup * @author Frank Bültge * @since 1.8.1 01/10/2013 */ if ( ! function_exists( 'add_action' ) ) { echo "Hi there! I'm just a part of plugin, not much I can do when called directly."; exit; } if ( ! is_admin() ) { return; } // If is AJAX Call. if ( defined('DOING_AJAX') && DOING_AJAX ) { return; } // The global var is only usable on edit Post Type page add_filter( 'do_meta_boxes', '_mw_adminimize_get_all_meta_boxes', 0, 3 ); function _mw_adminimize_get_all_meta_boxes( $post_type, $priority, $post ) { global $wp_meta_boxes; if ( ! empty( $wp_meta_boxes[ $post_type ] ) ) { // get all options $adminimizeoptions = _mw_adminimize_get_option_value(); // add meta box array for post type $adminimizeoptions[ 'mw_adminimize_meta_boxes_' . $post_type ] = $wp_meta_boxes[ $post_type ]; // update options _mw_adminimize_update_option( $adminimizeoptions ); } } function _mw_adminimize_get_meta_boxes( $post_type = null, $context = 'advanced' ) { $saved_wp_meta_boxes = _mw_adminimize_get_option_value( 'mw_adminimize_meta_boxes_' . $post_type ); return $saved_wp_meta_boxes; } function _mw_adminimize_remove_meta_boxes( $id, $post_type = null, $context = 'advanced', $priority = 'default' ) { // @TODO for each about settings remove_meta_box( $id, $post_type, $context ); } // remove on 'admin_menu' Hook